home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE06
/
WPTOOLS
/
WPTOOLS1.ZIP
/
WPTOOLS.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1995-12-28
|
376 b
|
23 lines
unit Wptools;
{ Kompnenten Initalisierung:
WPRichText
DBWPRichText
WPToolBar
}
interface
uses Classes, WPTBar, WPDBRich, WPRich, WPRuler{, WPPrint};
procedure Register;
implementation
{Register the components}
procedure Register;
begin
RegisterComponents('Utility', [TWPToolBar,TWPRuler,TWPRichText,TDBWPRichText{,TWPPrinter}]);
end;
end.